home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / pm / mainwindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  421 b   |  24 lines

  1. #ifndef _MAINWINDOW_H_
  2. #define _MAINWINDOW_H_
  3.  
  4. #ifndef _STDWINDOW_H_
  5. #include <pm/StdWindow.h>
  6. #endif
  7.  
  8. @interface MainWindow : StdWindow
  9. {
  10. }
  11.  
  12. - initWithId: (ULONG) anId;
  13. - initWithId: (ULONG) anId andFlags: (ULONG) flags;
  14.  
  15. - (MRESULT) handleMessage: (ULONG) msg
  16.             withParams: (MPARAM) mp1 and: (MPARAM) mp2;
  17.  
  18. -read: (TypedStream *) aStream;
  19. -write: (TypedStream *) aStream;
  20.  
  21. @end
  22.  
  23. #endif
  24.